home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1999 January / Designer's Club 1999 January.iso / pc / Idea Source / main.dir / 00042_studio.ls < prev    next >
Encoding:
Text File  |  1998-12-11  |  325 b   |  22 lines

  1. on mouseEnter me
  2.   puppetSound(1, "szew")
  3.   set the visible of sprite 20 to 0
  4.   updateStage()
  5. end
  6.  
  7. on mouseLeave me
  8.   set the visible of sprite 20 to 1
  9.   updateStage()
  10. end
  11.  
  12. on mouseDown
  13.   set the visible of sprite 13 to 0
  14.   updateStage()
  15. end
  16.  
  17. on mouseUp
  18.   set the visible of sprite 13 to 1
  19.   updateStage()
  20.   go("studio")
  21. end
  22.